home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Today - The Disc! 5
/
CD-ROM Today - The Disc (Issue 5)(November 1994).ISO
/
mac
/
Mac shareware
/
Education
/
RLaB
/
rlib
/
atanh.r
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-09-21
|
324 b
|
15 lines
|
[
TEXT/ttxt
]
//-------------------------------------------------------------------//
// Syntax: atanh ( X )
// Description:
// Atanh is the inverse hyperbolic tangent of the element(s) of X.
//-------------------------------------------------------------------//
atanh = function ( x )
{
return log ((1 + x) ./ (1 - x))/2;
};